home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / CHIP / Porady / Srodowisko PHP-MySQL / WAMP5 1.3 / wamp5_1.3.exe / {app} / mysql / my-innodb-heavy-4G.cnf < prev    next >
Text File  |  2004-09-24  |  21KB  |  510 lines

  1. #BEGIN CONFIG INFO
  2. #DESCR: 4GB RAM, InnoDB only, ACID, few connections, heavy queries
  3. #TYPE: SYSTEM
  4. #END CONFIG INFO
  5.  
  6. #
  7. # This is a MySQL example config file for systems with 4GB of memory
  8. # running mostly MySQL using InnoDB only tables and performing complex
  9. # queries with few connections.
  10. # You can copy this file to /etc/my.cnf to set global options,
  11. # mysql-data-dir/my.cnf to set server-specific options 
  12. # (/usr/local/mysql/var for this installation) or to
  13. # ~/.my.cnf to set user-specific options.
  14. #
  15. # In this file, you can use all long options that a program supports.
  16. # If you want to know which options a program supports, run the program
  17. # with the "--help" option.
  18. #
  19. # More detailed information about the individual options can also be
  20. # found in the manual.
  21. #
  22.  
  23. #
  24. # The following options will be read by MySQL client applications.
  25. # Note that only client applications shipped by MySQL are guaranteed
  26. # to read this section. If you want your own MySQL client program to
  27. # honor these values, you need to specify it as an option during the
  28. # MySQL client library initialization.
  29. #
  30. [client]
  31. #password    = [your_password]
  32. port        = 3306
  33. socket        = /tmp/mysql.sock
  34.  
  35. # *** Application-specific options follow here ***
  36.  
  37. #
  38. # The MySQL server
  39. #
  40. [mysqld]
  41.  
  42. # generic configuration options
  43. port        = 3306
  44. socket        = /tmp/mysql.sock
  45.  
  46. # back_log is the number of connections the operating system can keep in
  47. # the listen queue, before the MySQL connection manager thread has
  48. # processed them. If you have a very high connection rate and experience
  49. # "connection refused" errors, you might need to increase this value.
  50. # Check your OS documentation for the maximum value of this parameter.
  51. # Attempting to set back_log higher than your operating system limit
  52. # will have no effect.
  53. back_log = 50
  54.  
  55. # Don't listen on a TCP/IP port at all. This can be a security
  56. # enhancement, if all processes that need to connect to mysqld run
  57. # on the same host.  All interaction with mysqld must be made via Unix
  58. # sockets or named pipes.
  59. # Note that using this option without enabling named pipes on Windows
  60. # (via the "enable-named-pipe" option) will render mysqld useless!
  61. #skip-networking
  62.  
  63. # The maximum amount of concurrent sessions the MySQL server will
  64. # allow. One of these connections will be reserved for a user with
  65. # SUPER privileges to allow the administrator to login even if the
  66. # connection limit has been reached.
  67. max_connections = 100
  68.  
  69. # Maximum amount of errors allowed per host. If this limit is reached,
  70. # the host will be blocked from connecting to the MySQL server until
  71. # "FLUSH HOSTS" has been run or the server was restarted. Invalid
  72. # passwords and other errors during the connect phase result in
  73. # increasing this value. See the "Aborted_Connects" status variable for
  74. # global counter.
  75. max_connect_errors = 10
  76.  
  77. # The number of open tables for all threads. Increasing this value
  78. # increases the number of file descriptors that mysqld requires.
  79. # Therefore you have to make sure to set the amount of open files
  80. # allowed to at least 4096 in the variable "open-files-limit" in
  81. # section [mysqld_safe]
  82. table_cache = 2048
  83.  
  84. # Enable external file level locking. Enabled file locking will have a
  85. # negative impact on performance, so only use it in case you have
  86. # multiple database instances running on the same files (note some
  87. # restrictions still apply!) or if you use other software relying on
  88. # locking MyISAM tables on file level.
  89. #external-locking
  90.  
  91. # The maximum size of a query packet the server can handle as well as
  92. # maximum query size server can process (Important when working with
  93. # large BLOBs).  enlarged dynamically, for each connection.
  94. max_allowed_packet = 16M
  95.  
  96. # The size of the cache to hold the SQL statements for the binary log
  97. # during a transaction. If you often use big, multi-statement
  98. # transactions you can increase this value to get more performance. All
  99. # statements from transactions are buffered in the binary log cache and
  100. # are being written to the binary log at once after the COMMIT.  If the
  101. # transaction is larger than this value, temporary file on disk is used
  102. # instead.  This buffer is allocated per connection on first update
  103. # statement in transaction
  104. binlog_cache_size = 1M
  105.  
  106. # Maximum allowed size for a single HEAP (in memory) table. This option
  107. # is a protection against the accidential creation of a very large HEAP
  108. # table which could otherwise use up all memory resources.
  109. max_heap_table_size = 64M
  110.  
  111. # Sort buffer is used to perform sorts for some ORDER BY and GROUP BY
  112. # queries. If sorted data does not fit into the sort buffer, a disk
  113. # based merge sort is used instead - See "sort_merge_passes". Allocated
  114. # per thread if sort is needed.
  115. sort_buffer_size = 8M
  116.  
  117. # This buffer is used for the optimization of full JOINs (JOINs without
  118. # indexes). Such JOINs are very bad for performance in most cases
  119. # anyway, but setting this variable to a large value reduces the
  120. # performance impact. See the "select_full_join" status variable for a
  121. # count of full JOINs. Allocated per thread if full join is found
  122. join_buffer_size = 8M
  123.  
  124. # How many threads we should keep in a cache for reuse. When a client
  125. # disconnects, the client's threads are put in the cache if there aren't
  126. # more than thread_cache_size threads from before.  This greatly reduces
  127. # the amount of thread creations needed if you have a lot of new
  128. # connections. (Normally this doesn't give a notable performance
  129. # improvement if you have a good thread implementation.)
  130. thread_cache = 8
  131.  
  132. # This permits the application to give the threads system a hint for the
  133. # desired number of threads that should be run at the same time.  This
  134. # value only makes sense on systems that support the thread_concurrency()
  135. # function call (Sun Solaris, for example).
  136. # You should try [number of CPUs]*(2..4) for thread_concurrency
  137. thread_concurrency = 8
  138.  
  139. # Query cache is used to cache SELECT results and later return them
  140. # without actual executing the same query once again. Having the query
  141. # cache enabled may result in significant speed improvements, if your
  142. # have a lot of identical queries and rarely changing tables. See the
  143. # "Qcache_lowmem_prunes" status variable to check if the current value
  144. # is high enough for your load.
  145. # Note: In case your tables change very often or if your queries are
  146. # textually different every time, the query cache may result in a
  147. # slowdown instead of a performance improvement.
  148. query_cache_size = 64M
  149.  
  150. # Only cache result sets that are smaller than this limit. This is to
  151. # protect the query cache of a very large result set overwriting all
  152. # other query results.
  153. query_cache_limit = 2M
  154.  
  155. # Minimum word length to be indexed by the full text search index.
  156. # You might wish to decrease it if you need to search for shorter words.
  157. # Note that you need to rebuild your FULLTEXT index, after you have
  158. # modified this value.
  159. ft_min_word_len = 4
  160.  
  161. # If your system supports the memlock() function call, you might want to
  162. # enable this option while running MySQL to keep it locked in memory and
  163. # to avoid potential swapping out in case of high memory pressure. Good
  164. # for performance.
  165. #memlock
  166.  
  167. # Table type which is used by default when creating new tables, if not
  168. # specified differently during the CREATE TABLE statement.
  169. default_table_type = MYISAM
  170.  
  171. # Thread stack size to use. This amount of memory is always reserved at
  172. # connection time. MySQL itself usually needs no more than 64K of
  173. # memory, while if you use your own stack hungry UDF functions or your
  174. # OS requires more stack for some operations, you might need to set this
  175. # to a higher value.
  176. thread_stack = 192K
  177.  
  178. # Set the default transaction isolation level. Levels available are:
  179. # READ-UNCOMMITED, READ-COMMITED, REPEATABLE-READ, SERIALIZABLE
  180. transaction_isolation = REPEATABLE-READ
  181.  
  182. # Maximum size for internal (in-memory) temporary tables. If a table
  183. # grows larger than this value, it is automatically converted to disk
  184. # based table This limitation is for a single table. There can be many
  185. # of them.
  186. tmp_table_size = 64M
  187.  
  188. # Enable binary logging. This is required for acting as a MASTER in a
  189. # replication configuration. You also need the binary log if you need
  190. # the ability to do point in time recovery from your latest backup.
  191. log_bin
  192.  
  193. # If you're using replication with chained slaves (A->B->C), you need to
  194. # enable this option on server B. It enables logging of updates done by
  195. # the slave thread into the slave's binary log.
  196. #log_slave_updates
  197.  
  198. # Enable the full query log. Every query (even ones with incorrect
  199. # syntax) that the server receives will be logged. This is useful for
  200. # debugging, it is usually disabled in production use.
  201. #log
  202.  
  203. # Print warnings to the error log file.  If you have any problem with
  204. # MySQL you should enable logging of warnings and examine the error log
  205. # for possible explanations. 
  206. #log_warnings
  207.  
  208. # Log slow queries. Slow queries are queries which take more than the
  209. # amount of time defined in "long_query_time" or which do not use
  210. # indexes well, if log_long_format is enabled. It is normally good idea
  211. # to have this turned on if you frequently add new queries to the
  212. # system.
  213. log_slow_queries
  214.  
  215. # All queries taking more than this amount of time (in seconds) will be
  216. # trated as slow. Do not use "1" as a value here, as this will result in
  217. # even very fast queries being logged from time to time (as MySQL
  218. # currently measures time with second accuracy only).
  219. long_query_time = 2
  220.  
  221. # Log more information in the slow query log. Normally it is good to
  222. # have this turned on. This will enable logging of queries that are not
  223. # using indexes in addition to long running queries.
  224. log_long_format
  225.  
  226. # The directory used by MySQL for storing temporary files. For example,
  227. # it is used to perform disk based large sorts, as well as for internal
  228. # and explicit temporary tables. It might be good to put it on a
  229. # swapfs/tmpfs filesystem, if you do not create very large temporary
  230. # files. Alternatively you can put it on dedicated disk. You can
  231. # specify multiple paths here by separating them by ";" - they will then
  232. # be used in a round-robin fashion.
  233. #tmpdir = /tmp
  234.  
  235.  
  236. # ***  Replication related settings 
  237.  
  238.  
  239. # Unique server identification number between 1 and 2^32-1. This value
  240. # is required for both master and slave hosts. It defaults to 1 if
  241. # "master-host" is not set, but will MySQL will not function as a master
  242. # if it is omitted.
  243. server-id = 1
  244.  
  245. # Replication Slave (comment out master section to use this)
  246. #
  247. # To configure this host as a replication slave, you can choose between
  248. # two methods :
  249. #
  250. # 1) Use the CHANGE MASTER TO command (fully described in our manual) -
  251. #    the syntax is:
  252. #
  253. #    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
  254. #    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
  255. #
  256. #    where you replace <host>, <user>, <password> by quoted strings and
  257. #    <port> by the master's port number (3306 by default).
  258. #
  259. #    Example:
  260. #
  261. #    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
  262. #    MASTER_USER='joe', MASTER_PASSWORD='secret';
  263. #
  264. # OR
  265. #
  266. # 2) Set the variables below. However, in case you choose this method, then
  267. #    start replication for the first time (even unsuccessfully, for example
  268. #    if you mistyped the password in master-password and the slave fails to
  269. #    connect), the slave will create a master.info file, and any later
  270. #    changes in this file to the variable values below will be ignored and
  271. #    overridden by the content of the master.info file, unless you shutdown
  272. #    the slave server, delete master.info and restart the slaver server.
  273. #    For that reason, you may want to leave the lines below untouched
  274. #    (commented) and instead use CHANGE MASTER TO (see above)
  275. #
  276. # required unique id between 2 and 2^32 - 1
  277. # (and different from the master)
  278. # defaults to 2 if master-host is set
  279. # but will not function as a slave if omitted
  280. #server-id = 2
  281. #
  282. # The replication master for this slave - required
  283. #master-host = <hostname>
  284. #
  285. # The username the slave will use for authentication when connecting
  286. # to the master - required
  287. #master-user = <username>
  288. #
  289. # The password the slave will authenticate with when connecting to
  290. # the master - required
  291. #master-password = <password>
  292. #
  293. # The port the master is listening on.
  294. # optional - defaults to 3306
  295. #master-port = <port>
  296.  
  297. # Make the slave read-only. Only users with the SUPER privilege and the
  298. # replication slave thread will be able to modify data on it. You can
  299. # use this to ensure that no applications will accidently modify data on
  300. # the slave instead of the master
  301. #read_only
  302.  
  303.  
  304. #*** MyISAM Specific options
  305.  
  306.  
  307. # Size of the Key Buffer, used to cache index blocks for MyISAM tables.
  308. # Do not set it larger than 30% of your available memory, as some memory
  309. # is also required by the OS to cache rows. Even if you're not using
  310. # MyISAM tables, you should still set it to 8-64M as it will also be
  311. # used for internal temporary disk tables.
  312. key_buffer_size = 32M
  313.  
  314. # Size of the buffer used for doing full table scans of MyISAM tables.
  315. # Allocated per thread, if a full scan is needed.
  316. read_buffer_size = 2M
  317.  
  318. # When reading rows in sorted order after a sort, the rows are read
  319. # through this buffer to avoid a disk seeks. You can improve ORDER BY
  320. # performance a lot, if set this to a high value.
  321. # Allocated per thread, when needed.
  322. read_rnd_buffer_size = 16M
  323.  
  324. # MyISAM uses special tree-like cache to make bulk inserts (that is,
  325. # INSERT ... SELECT, INSERT ... VALUES (...), (...), ..., and LOAD DATA
  326. # INFILE) faster. This variable limits the size of the cache tree in
  327. # bytes per thread. Setting it to 0 will disable this optimisation.  Do
  328. # not set it larger than "key_buffer_size" for optimal performance.
  329. # This buffer is allocated when a bulk insert is detected.
  330. bulk_insert_buffer_size = 64M
  331.  
  332. # This buffer is allocated when MySQL needs to rebuild the index in
  333. # REPAIR, OPTIMZE, ALTER table statements as well as in LOAD DATA INFILE
  334. # into an empty table. It is allocated per thread so be careful with
  335. # large settings.
  336. myisam_sort_buffer_size = 128M
  337.  
  338. # The maximum size of the temporary file MySQL is allowed to use while
  339. # recreating the index (during REPAIR, ALTER TABLE or LOAD DATA INFILE.
  340. # If the file-size would be bigger than this, the index will be created
  341. # through the key cache (which is slower).
  342. myisam_max_sort_file_size = 10G
  343.  
  344. # If the temporary file used for fast index creation would be bigger
  345. # than using the key cache by the amount specified here, then prefer the
  346. # key cache method.  This is mainly used to force long character keys in
  347. # large tables to use the slower key cache method to create the index.
  348. myisam_max_extra_sort_file_size = 10G
  349.  
  350. # If a table has more than one index, MyISAM can use more than one
  351. # thread to repair them by sorting in parallel. This makes sense if you
  352. # have multiple CPUs and plenty of memory.
  353. myisam_repair_threads = 1
  354.  
  355. # Automatically check and repair not properly closed MyISAM tables.
  356. myisam_recover
  357.  
  358.  
  359. # *** BDB Specific options ***
  360.  
  361. # Use this option if you run a MySQL server with BDB support enabled but
  362. # you do not plan to use it. This will save memory and may speed up some
  363. # things.
  364. skip-bdb
  365.  
  366.  
  367. # *** INNODB Specific options ***
  368.  
  369. # Use this option if you have a MySQL server with InnoDB support enabled
  370. # but you do not plan to use it. This will save memory and disk space
  371. # and speed up some things.
  372. #skip-innodb
  373.  
  374. # Additional memory pool that is used by InnoDB to store metadata
  375. # information.  If InnoDB requires more memory for this purpose it will
  376. # start to allocate it from the OS.  As this is fast enough on most
  377. # recent operating systems, you normally do not need to change this
  378. # value. SHOW INNODB STATUS will display the current amount used.
  379. innodb_additional_mem_pool_size = 16M
  380.  
  381. # InnoDB, unlike MyISAM, uses a buffer pool to cache both indexes and
  382. # row data. The bigger you set this the less disk I/O is needed to
  383. # access data in tables. On a dedicated database server you may set this
  384. # parameter up to 80% of the machine physical memory size. Do not set it
  385. # too large, though, because competition of the physical memory may
  386. # cause paging in the operating system.  Note that on 32bit systems you
  387. # might be limited to 2-3.5G of user level memory per process, so do not
  388. # set it too high.
  389. innodb_buffer_pool_size = 2G
  390.  
  391. # InnoDB stores data in one or more data files forming the tablespace.
  392. # If you have a single logical drive for your data, a single
  393. # autoextending file would be good enough. In other cases, a single file
  394. # per device is often a good choice. You can configure InnoDB to use raw
  395. # disk partitions as well - please refer to the manual for more info
  396. # about this.
  397. innodb_data_file_path = ibdata1:10M:autoextend
  398.  
  399. # Set this option if you would like the InnoDB tablespace files to be
  400. # stored in another location. By default this is the MySQL datadir.
  401. #innodb_data_home_dir = <directory>
  402.  
  403. # Number of IO threads to use for async IO operations. This value is
  404. # hardcoded to 4 on Unix, but on Windows disk I/O may benefit from a
  405. # larger number.
  406. innodb_file_io_threads = 4
  407.  
  408. # If you run into InnoDB tablespace corruption, setting this to a nonzero
  409. # value will likely help you to dump your tables. Start from value 1 and
  410. # increase it until you're able to dump the table successfully.
  411. #innodb_force_recovery=1
  412.  
  413. # Number of threads allowed inside the InnoDB kernel. The optimal value
  414. # depends highly on the application, hardware as well as the OS
  415. # scheduler properties. A too high value may lead to thread thrashing.
  416. innodb_thread_concurrency = 16
  417.  
  418. # If set to 1, InnoDB will flush (fsync) the transaction logs to the
  419. # disk at each commit, which offers full ACID behavior. If you are
  420. # willing to compromise this safety, and you are running small
  421. # transactions, you may set this to 0 or 2 to reduce disk I/O to the
  422. # logs. Value 0 means that the log is only written to the log file and
  423. # the log file flushed to disk approximately once per second. Value 2
  424. # means the log is written to the log file at each commit, but the log
  425. # file is only flushed to disk approximately once per second.
  426. innodb_flush_log_at_trx_commit = 1
  427.  
  428. # Speed up InnoDB shutdown. This will disable InnoDB to do a full purge
  429. # and insert buffer merge on shutdown. It may increase shutdown time a
  430. # lot, but InnoDB will have to do it on the next startup instead.
  431. #innodb_fast_shutdown
  432.  
  433. # The size of the buffer InnoDB uses for buffering log data. As soon as
  434. # it is full, InnoDB will have to flush it to disk. As it is flushed
  435. # once per second anyway, it does not make sense to have it very large
  436. # (even with long transactions). 
  437. innodb_log_buffer_size = 8M
  438.  
  439. # Size of each log file in a log group. You should set the combined size
  440. # of log files to about 25%-100% of your buffer pool size to avoid
  441. # unneeded buffer pool flush activity on log file overwrite. However,
  442. # note that a larger logfile size will increase the time needed for the
  443. # recovery process.
  444. innodb_log_file_size = 256M
  445.  
  446. # Total number of files in the log group. A value of 2-3 is usually good
  447. # enough.
  448. innodb_log_files_in_group = 3
  449.  
  450. # Location of the InnoDB log files. Default is the MySQL datadir. You
  451. # may wish to point it to a dedicated hard drive or a RAID1 volume for
  452. # improved performance
  453. #innodb_log_group_home_dir
  454.  
  455. # Maximum allowed percentage of dirty pages in the InnoDB buffer pool.
  456. # If it is reached, InnoDB will start flushing them out agressively to
  457. # not run out of clean pages at all. This is a soft limit, not
  458. # guaranteed to be held.
  459. innodb_max_dirty_pages_pct = 90
  460.  
  461. # The flush method InnoDB will use for Log. The tablespace always uses
  462. # doublewrite flush logic. The default value is "fdatasync", another
  463. # option is "O_DSYNC".
  464. #innodb_flush_method=O_DSYNC
  465.  
  466. # How long an InnoDB transaction should wait for a lock to be granted
  467. # before being rolled back. InnoDB automatically detects transaction
  468. # deadlocks in its own lock table and rolls back the transaction. If you
  469. # use the LOCK TABLES command, or other transaction-safe storage engines
  470. # than InnoDB in the same transaction, then a deadlock may arise which
  471. # InnoDB cannot notice. In cases like this the timeout is useful to
  472. # resolve the situation.
  473. innodb_lock_wait_timeout = 120
  474.  
  475.  
  476. [mysqldump]
  477. # Do not buffer the whole result set in memory before writing it to
  478. # file. Required for dumping very large tables
  479. quick
  480.  
  481. max_allowed_packet = 16M
  482.  
  483. [mysql]
  484. no-auto-rehash
  485.  
  486. # Only allow UPDATEs and DELETEs that use keys.
  487. #safe-updates
  488.  
  489. [isamchk]
  490. key_buffer = 512M
  491. sort_buffer_size = 512M
  492. read_buffer = 8M
  493. write_buffer = 8M
  494.  
  495. [myisamchk]
  496. key_buffer = 512M
  497. sort_buffer_size = 512M
  498. read_buffer = 8M
  499. write_buffer = 8M
  500.  
  501. [mysqlhotcopy]
  502. interactive-timeout
  503.  
  504. [mysqld_safe]
  505. # Increase the amount of open files allowed per process. Warning: Make
  506. # sure you have set the global system limit high enough! The high value
  507. # is required for a large number of opened tables
  508. open-files-limit = 8192
  509.